Hsl.fromJson constructor

Hsl.fromJson(
  1. Map<String, dynamic> json
)

Implementation

Hsl.fromJson(Map<String, dynamic> json) {
  h = json['h'];
  s = json['s'];
  l = json['l'];
}