fromAsset method

Future fromAsset(
  1. String asset, {
  2. String? package,
})

asset - path of the file to be loaded

package - if the file is from another flutter package add the name of the package here

Implementation

Future fromAsset(String asset, {String? package}) async{
  throw (" load need implement ............. ");
}