Identity.fromJson constructor

Identity.fromJson(
  1. Map json_
)

Implementation

Identity.fromJson(core.Map json_)
  : this(
      healthUserId: json_['healthUserId'] as core.String?,
      legacyUserId: json_['legacyUserId'] as core.String?,
      name: json_['name'] as core.String?,
    );