DescribeSchemaResponse.fromJson constructor

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

Implementation

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