TypeKeySetResult.fromJson constructor

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

Implementation

TypeKeySetResult.fromJson(Map<String, dynamic> json) {
  errCode = json['errCode'];
  errMsg = json['errMsg'];
  typeKey = json['typeKey'];
  latestUpdateTime = json['latestUpdateTime'];
  value = json['value'];
}