isBase64 static method

bool isBase64(
  1. String text
)

Implementation

static bool isBase64(String text) =>
    RegExp(r"^[-A-Za-z0-9+=]{1,50}|=[^=]|={3,}$").hasMatch(text);