Skip to content

Instantly share code, notes, and snippets.

@madmag77
Last active March 6, 2021 08:37
Show Gist options
  • Save madmag77/c392958cc9e87d39dd135d801de2300e to your computer and use it in GitHub Desktop.
Save madmag77/c392958cc9e87d39dd135d801de2300e to your computer and use it in GitHub Desktop.
[Dart article] Dart function
Future<Money> getRemainingAmount({Account account}) async {
final response = await backend.getAcccountInfo(account);
return response.remainingAmount;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment