V2TimTopicOperationResult.fromJson constructor

V2TimTopicOperationResult.fromJson(
  1. Map json
)

Implementation

V2TimTopicOperationResult.fromJson(Map json) {
  json = Utils.formatJson(json);
  errorCode = json['group_topic_operation_result_error_code'];
  errorMessage = json['group_topic_operation_result_error_message'];
  topicID = json['group_topic_operation_result_topic_id'];
}