BackgroundTypePattern.fromJson constructor
Parse from a json
Implementation
factory BackgroundTypePattern.fromJson(Map<String, dynamic> json) => BackgroundTypePattern(
fill: BackgroundFill.fromJson(json['fill']),
intensity: json['intensity'],
isInverted: json['is_inverted'],
isMoving: json['is_moving'],
);