v1RemoveOrganizationFeatureIntent.fromJson constructor

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

Implementation

factory v1RemoveOrganizationFeatureIntent.fromJson(Map<String, dynamic> json) {
  final _name = v1FeatureNameFromJson(json['name']);
  return v1RemoveOrganizationFeatureIntent(
    name: _name,
  );
}