$AlbumInfoSongsPrivilegeChargeInfoListToJson function

Map<String, dynamic> $AlbumInfoSongsPrivilegeChargeInfoListToJson(
  1. AlbumInfoSongsPrivilegeChargeInfoList entity
)

Implementation

Map<String, dynamic> $AlbumInfoSongsPrivilegeChargeInfoListToJson(
    AlbumInfoSongsPrivilegeChargeInfoList entity) {
  final Map<String, dynamic> data = <String, dynamic>{};
  data['rate'] = entity.rate;
  data['chargeUrl'] = entity.chargeUrl;
  data['chargeMessage'] = entity.chargeMessage;
  data['chargeType'] = entity.chargeType;
  return data;
}