'Flutter formatting date from Arabic to English in yyyy-MM-dd

I am trying to format Arabic date to english with yyyy-MM-dd and getting The argument type 'String' can't be assigned to the parameter type 'DateTime'.

var format = DateFormat.yMd('en');
var dateString = format.format(frmDate);
var formattedDate = DateFormat('yyyy-MM-dd').format(dateString);

If anyone can help



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source