toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final id = this.id;
  final productArn = this.productArn;
  return {
    'Id': id,
    'ProductArn': productArn,
  };
}