PatternInfo.fromJson constructor

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

Implementation

factory PatternInfo.fromJson(Map<String, dynamic> json) {
  return PatternInfo(json['title'], json['axes']);
}