decode method

String? decode(
  1. String? string
)

Implementation

String? decode(final String? string) =>
    string == null ? null : utf8.decode(base64Decode(string));