Tenant.fromJson constructor

Tenant.fromJson(
  1. Map json_
)

Implementation

Tenant.fromJson(core.Map json_)
  : this(
      externalId: json_['externalId'] as core.String?,
      name: json_['name'] as core.String?,
    );