content property

List<Part> get content

Implementation

List<Part> get content {
  return (_json['content'] as List)
      .map((e) => Part.fromJson(e as Map<String, dynamic>))
      .toList();
}
set content (List<Part> value)

Implementation

set content(List<Part> value) {
  _json['content'] = value.toList();
}