TokenAccountInfo.fromAccountInfo constructor
      
      TokenAccountInfo.fromAccountInfo(
    
- AccountInfo info
Creates an instance of this class from an account info.
TokenAccountInfo.fromAccountInfo('AA==');
Implementation
factory TokenAccountInfo.fromAccountInfo(final AccountInfo info) {
  return info.isJson
    ? TokenAccountInfo.fromJson(info.jsonData)
    : TokenAccountInfo.fromBorshBase64(info.binaryData);
}