DescribeRefreshSchemasStatusResponse.fromJson constructor

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

Implementation

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