EnterprisesListResponse.fromJson constructor
EnterprisesListResponse.fromJson(
- Map json_
Implementation
EnterprisesListResponse.fromJson(core.Map json_)
: this(
enterprise: json_.containsKey('enterprise')
? (json_['enterprise'] as core.List)
.map((value) => Enterprise.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList()
: null,
);