RefreshSchemasResponse.fromJson constructor

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

Implementation

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