decode method

  1. @override
Uint8List decode(
  1. String input
)
override

Implementation

@override
Uint8List decode(String input) {
  try {
    return _decoder.convert(input);
  } catch (e) {
    return Uint8List.fromList([]);
  }
}