fromJson static method

PublicChatTypeIsLocationBased? fromJson(
  1. Map<String, dynamic>? json
)
override

Implementation

static PublicChatTypeIsLocationBased? fromJson(Map<String, dynamic>? json) {
  if (json == null) {
    return null;
  }

  return const PublicChatTypeIsLocationBased();
}