BackgroundFillGradient.fromJson constructor
Parse from a json
Implementation
factory BackgroundFillGradient.fromJson(Map<String, dynamic> json) => BackgroundFillGradient(
topColor: json['top_color'],
bottomColor: json['bottom_color'],
rotationAngle: json['rotation_angle'],
);