ParamsOfDecodeMessageBody constructor

ParamsOfDecodeMessageBody(
  1. {@required Abi abi,
  2. @required String body,
  3. @required bool is_internal}
)

Implementation

ParamsOfDecodeMessageBody({
  @required Abi abi,
  @required String body,
  @required bool is_internal,
}) {
  _abi = ArgumentError.checkNotNull(abi, 'ParamsOfDecodeMessageBody abi');
  _body = ArgumentError.checkNotNull(body, 'ParamsOfDecodeMessageBody body');
  _is_internal = ArgumentError.checkNotNull(
      is_internal, 'ParamsOfDecodeMessageBody is_internal');
}