createLiteDataAccount method

Future<Map<String, dynamic>> createLiteDataAccount(
  1. dynamic principal,
  2. CreateLiteDataAccountParam createLiteDataAccountParam,
  3. TxSigner signer
)

Implementation

Future<Map<String, dynamic>> createLiteDataAccount(
    dynamic principal, CreateLiteDataAccountParam createLiteDataAccountParam, TxSigner signer) {
  return _execute(AccURL.toAccURL(principal), CreateLiteDataAccount(createLiteDataAccountParam), signer);
}