SoftAp.fromJson constructor

SoftAp.fromJson(
  1. List json
)

Implementation

factory SoftAp.fromJson(List<dynamic> json) {
  return SoftAp(
    ssid: json[0] as String,
    bssid: json[1] as String,
    rssi: json[2] as int,
    auth: json[3] as int,
  );
}