fromJson static method

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

Implementation

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

  return const SessionDeviceTypeUnknown();
}