BillingLimits.fromMap constructor
Implementation
factory BillingLimits.fromMap(Map<String, dynamic> map) {
return BillingLimits(
bandwidth: map['bandwidth'],
storage: map['storage'],
users: map['users'],
executions: map['executions'],
GBHours: map['GBHours'],
imageTransformations: map['imageTransformations'],
authPhone: map['authPhone'],
budgetLimit: map['budgetLimit'],
);
}