toJson method

Map<String, dynamic> toJson()

Implementation

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