Mixin.fromJson constructor

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

Implementation

factory Mixin.fromJson(Map<String, dynamic> json) {
  return Mixin(name: json['name'], root: json['root']);
}