toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final devBootTypeCount = this.devBootTypeCount;
  final unreportedBootTypeCount = this.unreportedBootTypeCount;
  final verifiedBootTypeCount = this.verifiedBootTypeCount;
  return {
    'devBootTypeCount': ?devBootTypeCount,
    'unreportedBootTypeCount': ?unreportedBootTypeCount,
    'verifiedBootTypeCount': ?verifiedBootTypeCount,
  };
}