encode static method

String encode(
  1. RecoveryKeySize value
)

Implementation

static String encode(RecoveryKeySize value) {
	switch (value) {
		case RecoveryKeySize.bytes16:
			return 'Bytes16';
		case RecoveryKeySize.bytes32:
			return 'Bytes32';
		}
}