dco_decode_fbbl_api method

  1. @protected
FbblApi dco_decode_fbbl_api(
  1. dynamic raw
)
override

Implementation

@protected
FbblApi dco_decode_fbbl_api(dynamic raw) {
  // Codec=Dco (DartCObject based), see doc to use other codecs
  final arr = raw as List<dynamic>;
  if (arr.isNotEmpty)
    throw Exception('unexpected arr length: expect 0 but see ${arr.length}');
  return FbblApi();
}