AccountUsage.fromJson constructor

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

Implementation

factory AccountUsage.fromJson(Map<String, dynamic> json) {
  return AccountUsage(
    functionCount: json['FunctionCount'] as int?,
    totalCodeSize: json['TotalCodeSize'] as int?,
  );
}