toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  return <String, dynamic>{
    if (embedded != null) r'_embedded': embedded,
    if (links != null) r'_links': links,
    if (id != null) r'id': id,
    if (signature != null) r'signature': signature,
    if (state != null) r'state': state,
    if (type != null) r'type': type,
  };
}