toString method

  1. @override
String toString()
override

Returns the mnemonic phrase as a string with words separated by spaces.

Implementation

@override
String toString() {
  return "${_mnemonicList.sublist(0, _mnemonicList.length ~/ 3).join(",")}...";
}