toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final angle = this.angle;
  final brightness = this.brightness;
  final contentUri = this.contentUri;
  final contrast = this.contrast;
  final cropProperties = this.cropProperties;
  final sourceUri = this.sourceUri;
  final transparency = this.transparency;
  return {
    'angle': ?angle,
    'brightness': ?brightness,
    'contentUri': ?contentUri,
    'contrast': ?contrast,
    'cropProperties': ?cropProperties,
    'sourceUri': ?sourceUri,
    'transparency': ?transparency,
  };
}