Last active
August 22, 2020 11:23
-
-
Save ibrahimyilmaz/6a886e0fab8695b4a96bc2e44fc63011 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
val Transaction.formattedTransactionTime: String | |
get() = SomeFormattings(this.transactionTime) | |
fun Transaction.getFormattedTransactionTime() : String { | |
return SomeFormattings(this.transactionTime) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment