format property

String? format

Implementation

String? get format {
  try {
    return this?.uri?.split(".")?.last?.toLowerCase();
  } catch (e) {
    return null;
  }
}