toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final name = this.name;
  final type = this.type;
  final version = this.version;
  return {
    if (name != null) 'Name': name,
    if (type != null) 'Type': type,
    if (version != null) 'Version': version,
  };
}