toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final authorizationCode = this.authorizationCode;
  final clientCredentials = this.clientCredentials;
  final deviceCode = this.deviceCode;
  final implicit = this.implicit;
  final password = this.password;
  return {
    'authorizationCode': ?authorizationCode,
    'clientCredentials': ?clientCredentials,
    'deviceCode': ?deviceCode,
    'implicit': ?implicit,
    'password': ?password,
  };
}