fromJSON static method

RemoteAuthentication fromJSON(
  1. Map<String, dynamic> data
)

Implementation

static RemoteAuthentication fromJSON(Map<String, dynamic> data) {
	return RemoteAuthentication(
		basic: data["basic"] == null ? null : Basic.fromJSON(data["basic"])
	);
}