signPersonalMessage method

  1. @override
Future<Uint8List> signPersonalMessage(
  1. Uint8List payload, {
  2. int? chainId,
})

An override to the signPersonalMessage, personal sign would do the same trick without the necessity of chainId

Implementation

@override

/// An override to the signPersonalMessage, personal sign would do the same
/// trick without the necessity of chainId
Future<Uint8List> signPersonalMessage(Uint8List payload, {int? chainId}) {
  throw UnsupportedError('Please use "MagicCredential.personalSign" method');
}