ResultOfEncodeMessageBody constructor

ResultOfEncodeMessageBody(
  1. {@required String body,
  2. String data_to_sign}
)

Implementation

ResultOfEncodeMessageBody({
  @required String body,
  String data_to_sign,
}) {
  _body = ArgumentError.checkNotNull(body, 'ResultOfEncodeMessageBody body');
  _data_to_sign = data_to_sign;
}