toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (name != null) 'name': name!,
  if (progress != null) 'progress': progress!,
  if (state != null) 'state': state!,
  if (trackingUrl != null) 'trackingUrl': trackingUrl!,
};