RuntimeFunctionsAdapter constructor

const RuntimeFunctionsAdapter({
  1. List<FunctionStub> functions = const [],
})

FunctionsAdapter] that only returns a normal system without communicating with the server side.

You can test the processing of the intended function by specifying a stubbed function in functions.

サーバー側と通信せずに正常系を返すだけのFunctionsAdapter

functionsにスタブ化した関数を指定することで意図した関数の処理をテストすることができます。

Implementation

const RuntimeFunctionsAdapter({this.functions = const []});