outputVideos property

double? get outputVideos

Implementation

double? get outputVideos {
  return (_json['outputVideos'] as num?)?.toDouble();
}
set outputVideos (double? value)

Implementation

set outputVideos(double? value) {
  if (value == null) {
    _json.remove('outputVideos');
  } else {
    _json['outputVideos'] = value;
  }
}