ConnectDeviceBean.fromJson constructor
Implementation
factory ConnectDeviceBean.fromJson(Map<String, dynamic> json) =>
ConnectDeviceBean(
address: json["address"],
peripheral: json["peripheral"] ?? " ",
autoConnect: json["autoConnect"] ?? false,
);