dco_decode_fbbl_api method
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();
}