getFileLastModified method

Future<DateTime> getFileLastModified(
  1. dynamic htmlFile
)

Get the last modified date of the passed HTML file.

Implementation

Future<DateTime> getFileLastModified(dynamic htmlFile) {
  return FlutterDropzonePlatform.instance
      .getFileLastModified(htmlFile, viewId: viewId);
}