fromJson static method

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

Implementation

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

  return const ChatJoinRequestResultDeclined();
}