toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final acceptsMultipleValues = this.acceptsMultipleValues;
  final flagName = this.flagName;
  final integerRestrictions = this.integerRestrictions;
  final name = this.name;
  final recommendedIntegerValue = this.recommendedIntegerValue;
  final recommendedStringValue = this.recommendedStringValue;
  final requiresDbRestart = this.requiresDbRestart;
  final scope = this.scope;
  final stringRestrictions = this.stringRestrictions;
  final supportedDbVersions = this.supportedDbVersions;
  final valueType = this.valueType;
  return {
    'acceptsMultipleValues': ?acceptsMultipleValues,
    'flagName': ?flagName,
    'integerRestrictions': ?integerRestrictions,
    'name': ?name,
    'recommendedIntegerValue': ?recommendedIntegerValue,
    'recommendedStringValue': ?recommendedStringValue,
    'requiresDbRestart': ?requiresDbRestart,
    'scope': ?scope,
    'stringRestrictions': ?stringRestrictions,
    'supportedDbVersions': ?supportedDbVersions,
    'valueType': ?valueType,
  };
}