fromJson static method
Returns a new PostOrganizationRequest instance and imports
Implementation
// ignore: prefer_constructors_over_static_methods
static PostOrganizationRequest fromJson(dynamic value) {
final json = value.cast<String, dynamic>();
return PostOrganizationRequest(
name: mapValueOfType<String>(json, r'name'),
description: mapValueOfType<String>(json, r'description'),
);
}