baseNameExt static method

String baseNameExt(
  1. String memberMediumDocumentID,
  2. String filePath,
  3. String ext
)

Implementation

static String baseNameExt(
    String memberMediumDocumentID, String filePath, String ext) {
  return '$memberMediumDocumentID.${context.basenameWithoutExtension(filePath)}.$ext';
}