TableComment.fromMap constructor
Implementation
factory TableComment.fromMap(Map<String, dynamic> map) {
return TableComment(
message: (() { final guardedValue = map['message']; if (guardedValue == null) return null; return pulumi.Input.fromValue(guardedValue as String); })(),
);
}