MonthlyTransfer.fromJson constructor

MonthlyTransfer.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory MonthlyTransfer.fromJson(Map<String, dynamic> json) {
  return MonthlyTransfer(
    gbPerMonthAllocated: json['gbPerMonthAllocated'] as int?,
  );
}