v1DeleteSubOrganizationIntent.fromJson constructor

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

Implementation

factory v1DeleteSubOrganizationIntent.fromJson(Map<String, dynamic> json) {
  final _deleteWithoutExport = json['deleteWithoutExport'] as bool?;
  return v1DeleteSubOrganizationIntent(
    deleteWithoutExport: _deleteWithoutExport,
  );
}