Loa.fromJson constructor

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

Implementation

factory Loa.fromJson(Map<String, dynamic> json) {
  return Loa(
    loaContent: _s.decodeNullableUint8List(json['loaContent'] as String?),
    loaContentType: (json['loaContentType'] as String?)?.toLoaContentType(),
  );
}