fromJson static method

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

Implementation

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

  return const CallProblemSilentRemote();
}