RevokeAccessData.fromJson constructor

RevokeAccessData.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory RevokeAccessData.fromJson(Map<String, dynamic> json) => RevokeAccessData(
    tenants: json["tenants"] == null ? null : List<Tenant>.from(json["tenants"].map((x) => Tenant.fromJson(x))),
);