v1DeletePoliciesIntent.fromJson constructor

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

Implementation

factory v1DeletePoliciesIntent.fromJson(Map<String, dynamic> json) {
  final _policyIds = (json['policyIds'] as List).map((e) => e as String).toList();
  return v1DeletePoliciesIntent(
    policyIds: _policyIds,
  );
}