Insets.fromJson constructor
Implementation
factory Insets.fromJson(Map<String, dynamic> json) {
return Insets(
left: (json['left'] as num?)?.toDouble(),
top: (json['top'] as num?)?.toDouble(),
bottom: (json['bottom'] as num?)?.toDouble(),
right: (json['right'] as num?)?.toDouble(),
);
}