fromKey static method
Implementation
static Future<FlutterTexture> fromKey([
wid.GlobalKey? globalKey,
int? mapping,
int? wrapS,
int? wrapT,
int? magFilter,
int? minFilter,
int? format,
int? type,
int? anisotropy
]) async{
final i = globalKey == null?null:await generateImageFromGlobalKey(globalKey);
return FlutterTexture(i,mapping,wrapS,wrapT,magFilter,minFilter,format,type,anisotropy);
}