toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  return <String, dynamic>{
    if (id != null) r'id': id,
    if (code != null) r'code': code,
    if (type != null) r'type': type,
    if (name != null) r'name': name,
    if (description != null) r'description': description,
    if (signed != null) r'signed': signed,
  };
}