toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final checks = this.checks;
  final displayName = this.displayName;
  final imageAllowlist = this.imageAllowlist;
  final scope = this.scope;
  return {
    'checks': ?checks,
    'displayName': ?displayName,
    'imageAllowlist': ?imageAllowlist,
    'scope': ?scope,
  };
}