toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final basePlanId = this.basePlanId;
  final offerId = this.offerId;
  final offerPhase = this.offerPhase;
  final offerPhaseDetails = this.offerPhaseDetails;
  final servicePeriodEndTime = this.servicePeriodEndTime;
  final servicePeriodStartTime = this.servicePeriodStartTime;
  return {
    'basePlanId': ?basePlanId,
    'offerId': ?offerId,
    'offerPhase': ?offerPhase,
    'offerPhaseDetails': ?offerPhaseDetails,
    'servicePeriodEndTime': ?servicePeriodEndTime,
    'servicePeriodStartTime': ?servicePeriodStartTime,
  };
}