Skip to content

Instantly share code, notes, and snippets.

@PreyeaRegmi
Created August 30, 2021 14:51
Show Gist options
  • Save PreyeaRegmi/c13b0e7de193e4bf1474a2afa8a06d7e to your computer and use it in GitHub Desktop.
Save PreyeaRegmi/c13b0e7de193e4bf1474a2afa8a06d7e to your computer and use it in GitHub Desktop.
//Domain Entity responsible for calculating EMI for given params.
class EMICalculator {
final double amount, rate, time;
EMICalculator(this.amount, this.rate, this.time);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment