GetMetadataResult.fromJson constructor

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

Implementation

factory GetMetadataResult.fromJson(Map<String, dynamic> json) {
  return GetMetadataResult(
    entriesCount: json['entriesCount'] as num,
    keyGeneratorValue: json['keyGeneratorValue'] as num,
  );
}