toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() => {
      "brand_name": brandName == null ? null : brandName!.toJson(),
      "brand_logo": brandLogo == null ? null : brandLogo!.toJson(),
    };