toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
      if (boolValue != null) 'boolValue': boolValue!,
      if (displayName != null) 'displayName': displayName!,
      if (doubleValue != null) 'doubleValue': doubleValue!,
      if (enumValue != null) 'enumValue': enumValue!,
      if (order != null) 'order': order!,
      if (richtextValue != null) 'richtextValue': richtextValue!,
      if (stringValue != null) 'stringValue': stringValue!,
      if (timestampValue != null) 'timestampValue': timestampValue!,
    };