deserialize method

  1. @override
void deserialize(
  1. Map<String, dynamic>? json
)
override

Implementation

@override
void deserialize(Map<String, dynamic>? json) {
  if (json == null) {
    throw ApiException(
        400, 'Failed to deserialize TableCellFormatResponse data model.');
  }

  super.deserialize(json);
  if (json.containsKey('RequestId')) {
    requestId = json['RequestId'] as String;
  } else {
    requestId = null;
  }

  if (json.containsKey('CellFormat')) {
    cellFormat = ModelBase.createInstance<TableCellFormat>(
        json['CellFormat'] as Map<String, dynamic>);
  } else {
    cellFormat = null;
  }
}