toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final aspectRatio = this.aspectRatio;
final bitrateBps = this.bitrateBps;
final codec = this.codec;
final frameRateFps = this.frameRateFps;
final heightPixels = this.heightPixels;
final rotation = this.rotation;
final vendor = this.vendor;
final widthPixels = this.widthPixels;
return {
'aspectRatio': ?aspectRatio,
'bitrateBps': ?bitrateBps,
'codec': ?codec,
'frameRateFps': ?frameRateFps,
'heightPixels': ?heightPixels,
'rotation': ?rotation,
'vendor': ?vendor,
'widthPixels': ?widthPixels,
};
}