toJson method

Map<String, dynamic> toJson()

Implementation

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