Project lint checked and step added to config.yml

This commit is contained in:
2022-10-02 17:43:52 +01:00
parent e07e10079e
commit 8100f0b879
26 changed files with 71 additions and 63 deletions

View File

@@ -0,0 +1,7 @@
extension CurrencyExtension on String {
/// Convert currency string into currency code
/// eg. "AUD - Australian Dollar" to "AUD"
String getCurrencyCode(){
return substring(0,3);
}
}