EnterprisesListResponse.fromJson constructor

EnterprisesListResponse.fromJson(
  1. 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,
      );