fromBlobList method

Future<CubeTexture> fromBlobList(
  1. List<Blob> blob
)

Implementation

Future<CubeTexture> fromBlobList(List<Blob> blob) async{
  _init();
		for ( int i = 0; i < blob.length; ++ i ) {
			await fromBlob(blob[i]);
		}
		return texture;
}