Device.fromJson constructor

Device.fromJson(
  1. dynamic json
)

Implementation

Device.fromJson(dynamic json) {
  browserDetails = json['browserDetails'] != null ? MainBrowserDetails.fromJson(json['browserDetails']) : null;
}