toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final healthUserId = this.healthUserId;
  final legacyUserId = this.legacyUserId;
  final name = this.name;
  return {
    'healthUserId': ?healthUserId,
    'legacyUserId': ?legacyUserId,
    'name': ?name,
  };
}