toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final applicationName = this.applicationName;
  final customerId = this.customerId;
  final time = this.time;
  final uniqueQualifier = this.uniqueQualifier;
  return {
    'applicationName': ?applicationName,
    'customerId': ?customerId,
    'time': ?time?.toUtc().toIso8601String(),
    'uniqueQualifier': ?uniqueQualifier,
  };
}