toJson method

Map<String, dynamic> toJson()

Implementation

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