twitter facebook

【Flutter環境構築】Undefined name 'Encoding'. Try correcting the name to one that is defined

final uri = Uri.dataFromString(
  html,
  mimeType: 'text/html',
  encoding: Encoding.getByName('utf-8'),
);
下記のようなエラーが出た場合
Undefined name 'Encoding'. Try correcting the name to one that is defined, or defining the name.
以下でエラー解除されます。
import 'dart:convert' ;
import 'dart:convert' ;
    
// 省略

final uri = Uri.dataFromString(
  html,
  mimeType: 'text/html',
  encoding: Encoding.getByName('utf-8'),
);
AUTHOR
@えのえの
最終更新日 2024/11/14
FAVORITE good stock
LINK TAG
記法を見る
1732649572