parameterInsuranceFundAccount method
Parameter
parameterInsuranceFundAccount(
{ - required int accountId,
- dynamic hint,
})
override
Implementation
@override
Parameter parameterInsuranceFundAccount(
{required int accountId, dynamic hint}) {
return handler.executeSync(SyncTask(
callFfi: () {
var arg0 = cst_encode_u_32(accountId);
return wire.wire_Parameter_insurance_fund_account(arg0);
},
codec: DcoCodec(
decodeSuccessData:
dco_decode_Auto_Owned_RustOpaque_flutter_rust_bridgefor_generatedrust_asyncRwLockParameter,
decodeErrorData: dco_decode_AnyhowException,
),
constMeta: kParameterInsuranceFundAccountConstMeta,
argValues: [accountId],
apiImpl: this,
hint: hint,
));
}