RefreshSchemasResponse.fromJson constructor
Implementation
factory RefreshSchemasResponse.fromJson(Map<String, dynamic> json) {
return RefreshSchemasResponse(
refreshSchemasStatus: json['RefreshSchemasStatus'] != null
? RefreshSchemasStatus.fromJson(
json['RefreshSchemasStatus'] as Map<String, dynamic>)
: null,
);
}