Dataset.fromJson constructor

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

Implementation

factory Dataset.fromJson(Map<String, dynamic> json) {
  return Dataset(
    creationDateTime: timeStampFromJson(json['creationDateTime']),
    datasetArn: json['datasetArn'] as String?,
    datasetGroupArn: json['datasetGroupArn'] as String?,
    datasetType: json['datasetType'] as String?,
    lastUpdatedDateTime: timeStampFromJson(json['lastUpdatedDateTime']),
    name: json['name'] as String?,
    schemaArn: json['schemaArn'] as String?,
    status: json['status'] as String?,
  );
}