v1UpdateOrganizationNameIntent.fromJson constructor

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

Implementation

factory v1UpdateOrganizationNameIntent.fromJson(Map<String, dynamic> json) {
  final _organizationName = json['organizationName'] as String;
  return v1UpdateOrganizationNameIntent(
    organizationName: _organizationName,
  );
}