mirror of
https://github.com/hmalik144/easy_cc_flutter.git
synced 2025-12-10 03:05:34 +00:00
10 lines
242 B
Dart
10 lines
242 B
Dart
extension CurrencyExtension on String {
|
|
/// Convert currency string into currency code
|
|
/// eg. "AUD - Australian Dollar" to "AUD"
|
|
String getCurrencyCode(){
|
|
if (length == 3) {
|
|
return this;
|
|
}
|
|
return substring(0,3);
|
|
}
|
|
} |