toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final apiproduct = this.apiproduct;
  final createdAt = this.createdAt;
  final endTime = this.endTime;
  final lastModifiedAt = this.lastModifiedAt;
  final name = this.name;
  final startTime = this.startTime;
  return {
    'apiproduct': ?apiproduct,
    'createdAt': ?createdAt,
    'endTime': ?endTime,
    'lastModifiedAt': ?lastModifiedAt,
    'name': ?name,
    'startTime': ?startTime,
  };
}