Skip to content

Commit

Permalink
fix(utils): formatting code
Browse files Browse the repository at this point in the history
  • Loading branch information
Khushboo1702 committed Mar 19, 2024
1 parent dad0b08 commit cd98251
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/src/utils/number_system_utils.dart
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ import 'package:fa_dart_core/fa_dart_core.dart';
const decimalPlace = 2;

class NumberSystemUtils {

String parse(bool usesInternationalNumberSystem, num? val, {int decimalPlaces = 0}) =>
String parse(bool usesInternationalNumberSystem, num? val,
{int decimalPlaces = 0}) =>
usesInternationalNumberSystem
? _parseAsInternational(val ?? 0, decimalPlaces: decimalPlaces)
: _parseAsIndian(val ?? 0, decimalPlaces: decimalPlaces);
Expand Down

0 comments on commit cd98251

Please sign in to comment.