码迷,mamicode.com
首页 > 编程语言 > 详细

flutter之enum

时间:2020-04-15 13:47:18      阅读:312      评论:0      收藏:0      [点我收藏+]

标签:cti   span   types   type   null   string   pes   rip   last   

///枚举类型转string
String enumToString(o) => o.toString().split(‘.‘).last;

///string转枚举类型
T enumFromString<T>(Iterable<T> values, String value) {
  return values.firstWhere((type) => type.toString().split(‘.‘).last == value,
      orElse: () => null);
}

flutter之enum

标签:cti   span   types   type   null   string   pes   rip   last   

原文地址:https://www.cnblogs.com/sundaysme/p/12704532.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!