fromNetwork method
uri
- a uri containing the location of the file to be loaded
Implementation
@override
Future<TYPRFont?> fromNetwork(Uri uri) async{
_init();
ThreeFile? tf = await _loader.fromNetwork(uri);
return tf == null?null:_parse(tf.data);
}