DisplayInfo.fromJson constructor
Implementation
factory DisplayInfo.fromJson(Map<String, dynamic> json) {
return DisplayInfo(displayId: json['displayId'] as int, name: json['name'] as String, flags: json['flags'] as int?, rotation: json['rotation'] as int?);
}