toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final noBargeInDuration = this.noBargeInDuration;
  final totalDuration = this.totalDuration;
  return {
    'noBargeInDuration': ?noBargeInDuration,
    'totalDuration': ?totalDuration,
  };
}