toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final Map<String, dynamic> data = new Map<String, dynamic>();
  data['userId'] = this.userId;
  data['isFront'] = this.isFront;
  data['isLocal'] = this.isLocal;
  data['width'] = this.width;
  data['height'] = this.height;
  data['viewId'] = this.viewId;
  return data;
}