fromMap static method

AuthMode fromMap(
  1. Map map
)

Implementation

static AuthMode fromMap(Map<dynamic, dynamic> map) {
  int id = map["command"];
  return AuthMode.getAuthMode(id);
}